home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / redakcyjne / programy / VideoLAN Client (VLC) 1.0.5 / vlc-1.0.5-win32.exe / lua / playlist / break.lua < prev    next >
Text File  |  2010-01-30  |  2KB  |  55 lines

  1. --[[
  2.  $Id$
  3.  
  4.  Copyright ┬⌐ 2007 the VideoLAN team
  5.  
  6.  This program is free software; you can redistribute it and/or modify
  7.  it under the terms of the GNU General Public License as published by
  8.  the Free Software Foundation; either version 2 of the License, or
  9.  (at your option) any later version.
  10.  
  11.  This program is distributed in the hope that it will be useful,
  12.  but WITHOUT ANY WARRANTY; without even the implied warranty of
  13.  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14.  GNU General Public License for more details.
  15.  
  16.  You should have received a copy of the GNU General Public License
  17.  along with this program; if not, write to the Free Software
  18.  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  19. --]]
  20.  
  21. -- Probe function.
  22. function probe()
  23.     return vlc.access == "http"
  24.         and ( string.match( vlc.path, "^break.com" )
  25.            or string.match( vlc.path, "^www.break.com" ) )
  26. end
  27.  
  28. -- Parse function.
  29. function parse()
  30.     filepath = ""
  31.     filename = ""
  32.     filetitle = ""
  33.     arturl = ""
  34.     while true do
  35.         line = vlc.readline()
  36.         if not line then break end
  37.         if string.match( line, "sGlobalContentFilePath=" ) then
  38.             _,_,filepath= string.find( line, "sGlobalContentFilePath='(.-)'" )
  39.         end
  40.         if string.match( line, "sGlobalFileName=" ) then
  41.             _,_,filename = string.find( line, ".*sGlobalFileName='(.-)'")
  42.         end
  43.         if string.match( line, "sGlobalContentTitle=" ) then
  44.             _,_,filetitle = string.find( line, "sGlobalContentTitle='(.-)'")
  45.         end
  46.         if string.match( line, "el=\"videothumbnail\" href=\"" ) then
  47.             _,_,arturl = string.find( line, "el=\"videothumbnail\" href=\"(.-)\"" )
  48.         end
  49.         if string.match( line, "videoPath" ) then
  50.             _,_,videopath = string.find( line, ".*videoPath', '(.-)'" )
  51.             return { { path = videopath..filepath.."/"..filename..".flv"; title = filetitle; arturl = arturl } }
  52.         end
  53.     end
  54. end
  55.